Micron Document
🌎 rns.kin.earth git 🌍

Node / dev / reticulum / commits / d8f3ad8

Commit d8f3ad8d3f1308842d1f8fffea2ab920aae64054


Parents : a1b75b9
Author : Mark Qvist <mark@unsigned.io>
Date : 2023-03-04T19:30:47+01:00

Temporarily disabled extra-level log statement

Changes

1 files changed, 4 insertions(+), 1 deletions(-)


Diff

diff --git a/RNS/Channel.py b/RNS/Channel.py
index 6ef969cb..ff88669a 100644
--- a/RNS/Channel.py
+++ b/RNS/Channel.py
@@ -380,7 +380,10 @@ class Channel(contextlib.AbstractContextManager):
for envelope in self._tx_ring:
if envelope.outlet == self._outlet and (not envelope.packet
or self._outlet.get_packet_state(envelope.packet) == MessageState.MSGSTATE_SENT):
- RNS.log("Channel: Link has a pending message.", RNS.LOG_EXTREME)
+ # TODO: Check if this should be enabled with some kind of
+ # rate limiting, since it currently floods log output when
+ # messages are waiting.
+ # RNS.log("Channel: Link has a pending message.", RNS.LOG_EXTREME)
return False
return True

Served by rngit 1.5.2 - Generated in 0.05s